home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Best of MacTutor - S…e Code for Volumes 1 to 5
/
The Best of MacTutor - Source Code for Volume 1-5 (Wayzata Technology)(6031)(1990).bin
/
Source Code
/
#26 (Nov 87)
/
Pascal Code Tester
/
TestGlobals
< prev
next >
Wrap
Text File
|
1987-10-26
|
867b
|
45 lines
UNIT TestGlobals;
INTERFACE
USES
ROM85;
CONST
AppleMenu = 256; (* Resourse ID's & Menu Item #'s *)
FileMenu = 257;
TestItem = 1;
Quititem = 3;
AboutId = 260;
NoteId = 261;
CautionId = 262;
StopId = 263;
DlogH = 100; (* for SF Get & Put *)
DlogV = 85;
UntitledId = 300; (* Strings - For Window if needed *)
Saveit = 301;
UndoIt = 302;
VAR
Finished : Boolean; (* used to terminate the program *)
Watch : Cursor; (* Cursors *)
AppleMHandle, FileMHandle : MenuHandle;
ResStr : Str255; (* For Converting the Resourse String *)
ResStrHdl : StringHandle;
Machine : integer;
DragArea : Rect; (* rectangles *)
GrowArea : Rect;
Screen : Rect;
ViewArea, DestArea : Rect;
WindowArea : Rect;
JeffsText : TEHandle;
JeffsWindow : WindowPtr; (* pointer to Program window *)
IMPLEMENTATION
END.